You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
The measured numbers changed — a runtime version bumped, or a suite result moved.
Review the diff in results.json before merging: a drop in passing tests is
either a new runtime gap or a regression in @opentf/std.
Runtime Blob is missing Symbol.toStringTag, so Object.prototype.toString.call(blob) returns [object Object]. This deviates from the File API spec; the fix belongs in the runtime.
Affected utilities: isBlob. Everything else works as expected.
LLRT 0.8.0-beta
Runtime spec deviation (1 test)
Runtime does not perform IteratorClose when a for await...of loop exits early, so a finally block in an async generator never runs. Required by ECMA-262; the equivalent sync for...of path is handled correctly. The fix belongs in the runtime.
Affected utilities: fromIterAsync. Everything else works as expected.
Missing platform API — Intl.NumberFormat unavailable (2 tests)
Number formatting needs Intl.NumberFormat. Runtimes built without ICU cannot format compact notation or currencies.
Affected utilities: formatCompact, formatCurrency. Everything else works as expected.
Missing platform API — Intl.Segmenter unavailable (13 tests)
Grapheme segmentation needs Intl.Segmenter. Runtimes built without full ICU cannot count or reverse multi-codepoint characters correctly.
Affected utilities: stringWidth, stringReverse. Everything else works as expected.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
Regenerated by the Runtime Matrix workflow.
The measured numbers changed — a runtime version bumped, or a suite result moved.
Review the diff in
results.jsonbefore merging: a drop in passing tests iseither a new runtime gap or a regression in
@opentf/std.